home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ IIS Messages 1.xpl < prev    next >
Text File  |  1998-08-08  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Information Server"
  5. "NAME"="Messages"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Access Denied"
  8. "DESCRIPTION 1"="The "Access Denied" message is sent to the user if he has tried to get a file and he has no permissions to get it."
  9. "AUTHOR"="Xteq Systems"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  12. "COMMENT 2"="Version 1.1"
  13.  
  14. 'Declaration of some constants
  15. sP="HKLM\System\CurrentControlSet\Services\W3SVC\Parameters\"
  16. sP2="HKLM\System\CurrentControlSet\Services\InetInfo\Parameters\"
  17. vAD="AccessDeniedMessage" 'string
  18.  
  19. 'Called when the Plugin is started
  20. Sub Plugin_Initialize
  21.  if RegPathExists(sP) then
  22.   s=RegReadValue(sp & vAD)
  23.   SetUIElement 1,s
  24.  else
  25.   Disable
  26.  end if
  27. End Sub
  28.  
  29. 'Called when the Plugin should validate the Data the user has entered
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. 'Called when the Plugin should apply the changes
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  s=GetUIElement(1)
  36.  Call RegWriteValue(sp & vad,s,1)
  37. End Sub
  38.  
  39. 'Called when the Plugin is about to be removed from memory
  40. Sub Plugin_Terminate
  41. End Sub
  42.